Next Previous Table of Contents

The LMisc Class

#include "lmisc.hxx"

Public Methods

MemZero

static inline void LMisc::MemZero(unsigned int* A, const int size)

Sets the words from A to A+size-1 to zero.

MemCopy

static inline void LMisc::MemCopy(const unsigned int* source, unsigned int* dest, const int size)

Copies the words from the memory segment starting at source and ending at source+size-1 into the memory segment starting at dest and ending at dest+size-1. This method will only work as promised when the source and destination segments are disjoint.


Next Previous Table of Contents